home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / srcbkvt.zip / 20_20_4.ZIP / SHMEM.DPR < prev    next >
Text File  |  1996-03-14  |  191b  |  14 lines

  1. program shmem;
  2.  
  3. uses
  4.   Forms,
  5.   simpdemo in 'simpdemo.pas' {Form1},
  6.   shdmem in 'shdmem.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.